home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _69C8AB6D86B04255B662A8F64EF63657 < prev    next >
Encoding:
Text File  |  2006-08-04  |  760 b   |  29 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'',
  6.         'Copyright': u'',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro 10',
  9.         'Host Version': u'10.00 Alpha 20050615.16'
  10.         }
  11.  
  12. def Preset_ColorAdjustChannelMixer():
  13.     return {
  14.         'ChannelMixer': {
  15.             'Monochrome': True, 
  16.             'Red': (100,0,0,0), 
  17.             'Blue': (0,0,100,0), 
  18.             'Green': (0,100,0,0)
  19.             }, 
  20.         'SaveRed': (100,0,0,0), 
  21.         'SaveGreen': (0,100,0,0), 
  22.         'SaveBlue': (0,0,100,0)
  23.         }
  24.  
  25. def Do(Environment):
  26.     # Color Adjust Channel Mixer_LOCALIZED
  27.     App.Do( Environment, 'ColorAdjustChannelMixer',         Preset_ColorAdjustChannelMixer())
  28.  
  29.